home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_3 / psm / source / lists.h < prev    next >
Text File  |  1993-07-28  |  220b  |  10 lines

  1.  
  2. void *num_to_node(struct List *lst,ULONG num);
  3. ULONG node_to_num(struct List *lst,void *nd);
  4.  
  5. void *head_node(struct List *lst);
  6. void *tail_node(struct List *lst);
  7.  
  8. void *next_node(void *nd);
  9. void *prev_node(void *nd);
  10.